From 6f120790c747c6d076eb8adee55d797e62ab2030 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 7 Mar 2009 14:35:53 +0000 Subject: [PATCH] (woman-parse-colon-path): Return a list even if there's only one directory in PATHS. --- lisp/woman.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/woman.el b/lisp/woman.el index d739f64bf06..5fbb5ef6fdb 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -468,7 +468,7 @@ As a special case, if PATHS is nil then replace it by calling (parse-colon-path paths))) ((string-match "\\`[a-zA-Z]:" paths) ;; Assume single DOS-style path... - paths) + (list paths)) (t ;; Assume UNIX/Cygwin-style path-list... (woman-mapcan ; splice list into list -- 2.30.2